home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2009 October / SAN CD 10-2009 CD-ROM 53.iso / pc / issueMedia / Software / Celestia_osx_1.6.0 / Celestia.app / Contents / Resources / vp_patch.sh < prev   
Encoding:
Linux/UNIX/POSIX Shell Script  |  2009-07-07  |  226 b   |  8 lines

  1. #!/bin/zsh
  2.  
  3. if [[ -e $1 ]]; then
  4.     [[ -w $1 ]] && sed -e 's/[[:blank:]]*#[[:blank:]]*IgnoreGLExtensions/ IgnoreGLExtensions/' -i .bak $1;
  5. else
  6.     echo 'Configuration {\nIgnoreGLExtensions [ "GL_ARB_vertex_program" ]\n}' > $1;
  7. fi
  8.